1 /* 2 * The MIT License (MIT) 3 * 4 * Copyright (c) 2014 Devisualization (Richard Andrew Cattermole) 5 * 6 * Permission is hereby granted, free of charge, to any person obtaining a copy 7 * of this software and associated documentation files (the "Software"), to deal 8 * in the Software without restriction, including without limitation the rights 9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 * copies of the Software, and to permit persons to whom the Software is 11 * furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in all 14 * copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 * SOFTWARE. 23 */ 24 module devisualization.util.opengl.function_wrappers.deprecated_.v14; 25 26 /* 27 alias da_glFogCoordf = void function( GLfloat ); 28 alias da_glFogCoordfv = void function( const( GLfloat )* ); 29 alias da_glFogCoordd = void function( GLdouble ); 30 alias da_glFogCoorddv = void function( const( GLdouble )* ); 31 alias da_glFogCoordPointer = void function( GLenum, GLsizei,const( void )* ); 32 alias da_glSecondaryColor3b = void function( GLbyte, GLbyte, GLbyte ); 33 alias da_glSecondaryColor3bv = void function( const( GLbyte )* ); 34 alias da_glSecondaryColor3d = void function( GLdouble, GLdouble, GLdouble ); 35 alias da_glSecondaryColor3dv = void function( const( GLdouble )* ); 36 alias da_glSecondaryColor3f = void function( GLfloat, GLfloat, GLfloat ); 37 alias da_glSecondaryColor3fv = void function( const( GLfloat )* ); 38 alias da_glSecondaryColor3i = void function( GLint, GLint, GLint ); 39 alias da_glSecondaryColor3iv = void function( const( GLint )* ); 40 alias da_glSecondaryColor3s = void function( GLshort, GLshort, GLshort ); 41 alias da_glSecondaryColor3sv = void function( const( GLshort )* ); 42 alias da_glSecondaryColor3ub = void function( GLubyte, GLubyte, GLubyte ); 43 alias da_glSecondaryColor3ubv = void function( const( GLubyte )* ); 44 alias da_glSecondaryColor3ui = void function( GLuint, GLuint, GLuint ); 45 alias da_glSecondaryColor3uiv = void function( const( GLuint )* ); 46 alias da_glSecondaryColor3us = void function( GLushort, GLushort, GLushort ); 47 alias da_glSecondaryColor3usv = void function( const( GLushort )* ); 48 alias da_glSecondaryColorPointer = void function( GLint, GLenum, GLsizei, void* ); 49 alias da_glWindowPos2d = void function( GLdouble, GLdouble ); 50 alias da_glWindowPos2dv = void function( const( GLdouble )* ); 51 alias da_glWindowPos2f = void function( GLfloat, GLfloat ); 52 alias da_glWindowPos2fv = void function( const( GLfloat )* ); 53 alias da_glWindowPos2i = void function( GLint, GLint ); 54 alias da_glWindowPos2iv = void function( const( GLint )* ); 55 alias da_glWindowPos2s = void function( GLshort, GLshort ); 56 alias da_glWindowPos2sv = void function( const( GLshort )* ); 57 alias da_glWindowPos3d = void function( GLdouble, GLdouble, GLdouble ); 58 alias da_glWindowPos3dv = void function( const( GLdouble )* ); 59 alias da_glWindowPos3f = void function( GLfloat, GLfloat, GLfloat ); 60 alias da_glWindowPos3fv = void function( const( GLfloat )* ); 61 alias da_glWindowPos3i = void function( GLint, GLint, GLint ); 62 alias da_glWindowPos3iv = void function( const( GLint )* ); 63 alias da_glWindowPos3s = void function( GLshort, GLshort, GLshort ); 64 alias da_glWindowPos3sv = void function( const( GLshort )* );*/